home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / program / rtrack01.lha / include / proto / rtrack.h
C/C++ Source or Header  |  1995-08-18  |  500b  |  24 lines

  1. /*
  2.  * RTrack (C) 1995 by PROXITY SOFTWORKS
  3.  */
  4.  
  5. #ifndef PROTO_RTRACK_H
  6. #define PROTO_RTRACK_H
  7. #ifndef  EXEC_LIBRARIES_H
  8. #include <exec/types.h>
  9. #endif
  10. #ifndef  DOS_DOS_H
  11. #include <dos/dos.h>
  12. #endif
  13.  
  14. /* Do not edit! AutoExit handling may change in the future! */
  15. extern BOOL RTrackAutoExit;
  16. #ifdef __SASC
  17. static void __inline rkAutoExit(BOOL autoExit) {RTrackAutoExit = autoExit;}
  18. #else
  19. static void rkAutoExit(BOOL autoExit) {RTrackAutoExit = autoExit;}
  20. #endif
  21.  
  22. #include <clib/RTrack_protos.h>
  23. #endif
  24.